home *** CD-ROM | disk | FTP | other *** search
- ;--------------------------------------- Colors.SC.
- ;-- Shows colors used with STYLE ATTRIBUTE command.
- ;------------------------------ Loop from 0 to 255.
- Counter = 0
- WHILE Counter <= 255
- STYLE ATTRIBUTE Counter
- ?? FORMAT("W5",Counter)
- Counter = Counter + 1
- ENDWHILE
- @ 24,1
- ?? "Press any key when done viewing colors..."
- X = GETCHAR()
-